int LED_pin = 13;
void setup ()
{
pinMode (LED_pin, OUTPUT);
}
void loop ()
{
digitalWrite (LED_pin, HIGH);
}
